解决npm install卡住不动的小尴尬

解决npm install卡住不动的小尴尬

遇到的问题

1
npm install -g @angular/cli

安装angular cli工具时,发现进度条一直卡住不动,相信很多朋友也遇到过。原因应该是国内的网络连接npm速度较慢,甚至很多东西都无法下载安装。那么如何解决这个问题呢?

方案一:安装cnpm镜像

这个是比较常用的方法,我首先也是使用了这个方法。cnpm的安装方法,参考http://npm.taobao.org/

1
npm install -g cnpm --registry=https://registry.npm.taobao.org

cmd输入以上命令就可以了,然后输入

1
cnpm install -g @angular/cli

后面的操作跟不使用镜像的操作是差不多的。
但是笔者在后续使用过程中遇到了一些问题,运行ng eject后发生了一些错误,所以放弃了这个方案,采用了方案二。

方案二:使用代理registry

在网上查阅了一些资料后,决定使用代理的方式,方法也很简单,就是

1
npm config set registry https://registry.npm.taobao.org

然后后续的install等命令还是通过npm运作,而不是cnpm

有点小强迫症的我还是喜欢npm install


扫一扫下方小程序码或搜索Tusi博客,即刻阅读最新文章!

Tusi博客

You forgot to set the qrcode for Alipay. Please set it in _config.yml.
You forgot to set the qrcode for Wechat. Please set it in _config.yml.
You forgot to set the business and currency_code for Paypal. Please set it in _config.yml.
You forgot to set the url Patreon. Please set it in _config.yml.
Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×